diff options
Diffstat (limited to 'src/app/anime/[id]/page.jsx')
| -rw-r--r-- | src/app/anime/[id]/page.jsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/app/anime/[id]/page.jsx b/src/app/anime/[id]/page.jsx index c060899..4263005 100644 --- a/src/app/anime/[id]/page.jsx +++ b/src/app/anime/[id]/page.jsx @@ -14,13 +14,12 @@ const AnimeInfoHomepage = async ({ params }) => { return (
<section
style={{
- backgroundColor: "black",
backgroundImage: `radial-gradient(gray 1px, transparent 1px)`,
backgroundSize: "40px 40px",
}}
- className="h-screen "
+ className="h-screen bg-white dark:bg-black"
>
- <section className="absolute inset-0 bg-gradient-to-b from-transparent to-black">
+ <section className="absolute inset-0 bg-gradient-to-b from-transparent to-white dark:to-black">
<section className="pt-12 lg:w-9/12 m-auto">
<div className="flex items-center justify-center lg:justify-start md:justify-start">
<Image
|